home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 April: Mac OS SDK / Dev.CD Apr 98 SDK2.toast / Development Kits (Disc 2) / QuickTime™ VR 2.0 SDK / QTVR C⁄C++ Runtime API / Sample Code / VRShell Sample Code / VRShell / Application Files / MacApplication.h < prev    next >
Encoding:
Text File  |  1997-05-22  |  708 b   |  40 lines  |  [TEXT/MPCC]

  1. //
  2. //    File:        MacApplication.h
  3. //
  4. //    Contains:    Functions that could be overridden in a specific application.
  5. //
  6. //    Written by:    Tim Monroe
  7. //                Based (heavily!) on the MovieShell code written by Apple DTS
  8. //
  9. //    Copyright:    © 1994-1996 by Apple Computer, Inc., all rights reserved.
  10. //
  11. //    Change History (most recent first):
  12. //
  13. //       <2>         11/27/96    rtm        conversion to personal coding style
  14. //       <1>         12/21/94    khs        first file
  15. //       
  16. //
  17.  
  18. #pragma once
  19.  
  20. // application-specific constants
  21. // for menus
  22.  
  23. enum eAppMenus {
  24.     mTesting = 131
  25. };
  26.  
  27. enum eTestingMenu {
  28.     iTest1 = 1,
  29.     iTest2,
  30.     iTest3,
  31.     iTest4,
  32.     iTest5,
  33.     iTest6,
  34.     iTest7,
  35.     iTest8,
  36.     iTest9,
  37.     iTest10
  38. };
  39.  
  40. // the function prototypes are in the file MacFramework.h